home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gdevvec.h < prev    next >
C/C++ Source or Header  |  1997-05-04  |  13KB  |  329 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevvec.h */
  20. /* Common definitions for "vector" devices */
  21. #include "gsropt.h"
  22. #include "gxdevice.h"
  23. #include "gdevbbox.h"
  24. #include "gxistate.h"
  25. #include "stream.h"
  26.  
  27. /******
  28.  ****** NOTE: EVERYTHING IN THIS FILE IS SUBJECT TO CHANGE WITHOUT NOTICE.
  29.  ****** USE AT YOUR OWN RISK.
  30.  ******/
  31.  
  32. /*
  33.  * "Vector" devices produce a stream of higher-level drawing commands rather
  34.  * than a raster image.  (We don't like the term "vector", since the command
  35.  * vocabulary typically includes text and raster images as well as actual
  36.  * vectors, but it's widely used in the industry, and we weren't able to
  37.  * find one that read better.)  Some examples of "vector" formats are PDF,
  38.  * PostScript, PCL XL, HP-GL/2 + RTL, CGM, Windows Metafile, and Macintosh
  39.  * PICT.
  40.  *
  41.  * This file extends the basic driver structure with elements likely to be
  42.  * useful to vector devices.  These include:
  43.  *
  44.  *    - Tracking whether any marks have been made on the page;
  45.  *
  46.  *    - Keeping track of the page bounding box;
  47.  *
  48.  *    - A copy of the most recently written current graphics state
  49.  *    parameters;
  50.  *
  51.  *    - An output stream (for drivers that compress or otherwise filter
  52.  *    their output);
  53.  *
  54.  *    - A vector of procedures for writing changes to the graphics state.
  55.  *
  56.  *    - The ability to work with scaled output coordinate systems.
  57.  *
  58.  * We expect to add more elements and procedures as we gain more experience
  59.  * with this kind of driver.
  60.  */
  61.  
  62. /* ================ Types and structures ================ */
  63.  
  64. /* Define the abstract type for a vector device. */
  65. typedef struct gx_device_vector_s gx_device_vector;
  66.  
  67. /* Define the maximum size of the output file name. */
  68. #define fname_size 80
  69.  
  70. /* Define the longest dash pattern we can remember. */
  71. #define max_dash 11
  72.  
  73. /*
  74.  * Define procedures for writing common output elements.  Not all devices
  75.  * will support all of these elements.  Note that these procedures normally
  76.  * only write out commands, and don't update the driver state itself.  All
  77.  * of them are optional, called only as indicated under the utility
  78.  * procedures below.
  79.  */
  80. typedef enum {
  81.   gx_path_type_none = 0,
  82.   /*
  83.    * All combinations of flags are legal.  Multiple commands are
  84.    * executed in the order fill, stroke, clip.
  85.    */
  86.   gx_path_type_fill = 1,
  87.   gx_path_type_stroke = 2,
  88.   gx_path_type_clip = 4,
  89.   gx_path_type_winding_number = 0,
  90.   gx_path_type_even_odd = 8,
  91.   gx_path_type_rule = gx_path_type_winding_number | gx_path_type_even_odd
  92. } gx_path_type_t;
  93. typedef enum {
  94.   gx_rect_x_first,
  95.   gx_rect_y_first
  96. } gx_rect_direction_t;
  97. typedef struct gx_device_vector_procs_s {
  98.     /* Page management */
  99.   int (*beginpage)(P1(gx_device_vector *vdev));
  100.     /* Imager state */
  101.   int (*setlinewidth)(P2(gx_device_vector *vdev, floatp width));
  102.   int (*setlinecap)(P2(gx_device_vector *vdev, gs_line_cap cap));
  103.   int (*setlinejoin)(P2(gx_device_vector *vdev, gs_line_join join));
  104.   int (*setmiterlimit)(P2(gx_device_vector *vdev, floatp limit));
  105.   int (*setdash)(P4(gx_device_vector *vdev, const float *pattern,
  106.             uint count, floatp offset));
  107.   int (*setflat)(P2(gx_device_vector *vdev, floatp flatness));
  108.   int (*setlogop)(P3(gx_device_vector *vdev, gs_logical_operation_t lop,
  109.              gs_logical_operation_t diff));
  110.     /* Other state */
  111.   int (*setfillcolor)(P2(gx_device_vector *vdev, const gx_drawing_color *pdc));
  112.   int (*setstrokecolor)(P2(gx_device_vector *vdev, const gx_drawing_color *pdc));
  113.     /* Paths */
  114.     /* dopath and dorect are normally defaulted */
  115.   int (*dopath)(P3(gx_device_vector *vdev, const gx_path *ppath,
  116.            gx_path_type_t type));
  117.   int (*dorect)(P6(gx_device_vector *vdev, fixed x0, fixed y0, fixed x1,
  118.            fixed y1, gx_path_type_t type));
  119.   int (*beginpath)(P2(gx_device_vector *vdev, gx_path_type_t type));
  120.   int (*moveto)(P6(gx_device_vector *vdev, floatp x0, floatp y0,
  121.            floatp x, floatp y, bool first));
  122.   int (*lineto)(P5(gx_device_vector *vdev, floatp x0, floatp y0,
  123.            floatp x, floatp y));
  124.   int (*curveto)(P9(gx_device_vector *vdev, floatp x0, floatp y0,
  125.             floatp x1, floatp y1, floatp x2, floatp y2,
  126.             floatp x3, floatp y3));
  127.   int (*closepath)(P5(gx_device_vector *vdev, floatp x0, floatp y0,
  128.               floatp x_start, floatp y_start));
  129.   int (*endpath)(P2(gx_device_vector *vdev, gx_path_type_t type));
  130. } gx_device_vector_procs;
  131.  
  132. /* Default implementations of procedures */
  133. /* setflat does nothing */
  134. int gdev_vector_setflat(P2(gx_device_vector *vdev, floatp flatness));
  135. /* dopath may call dorect, beginpath, moveto/lineto/curveto/closepath, */
  136. /* endpath */
  137. int gdev_vector_dopath(P3(gx_device_vector *vdev, const gx_path *ppath,
  138.               gx_path_type_t type));
  139. /* dorect may call beginpath, moveto, lineto, closepath */
  140. int gdev_vector_dorect(P6(gx_device_vector *vdev, fixed x0, fixed y0,
  141.               fixed x1, fixed y1, gx_path_type_t type));
  142.  
  143. /* Finally, define the extended device structure. */
  144. #define gx_device_vector_common\
  145.     gx_device_common;\
  146.     gs_memory_t *v_memory;\
  147.         /* Output element writing procedures */\
  148.     const gx_device_vector_procs *vec_procs;\
  149.         /* Output file */\
  150.     char fname[fname_size + 1];\
  151.     FILE *file;\
  152.     stream *strm;\
  153.     byte *strmbuf;\
  154.     uint strmbuf_size;\
  155.         /* Graphics state */\
  156.     gs_imager_state state;\
  157.     float dash_pattern[max_dash];\
  158.     gx_drawing_color fill_color, stroke_color;\
  159.     gs_id no_clip_path_id;    /* indicates no clipping */\
  160.     gs_id clip_path_id;\
  161.         /* Other state */\
  162.     gs_point scale;        /* device coords / scale => output coords */\
  163.     bool in_page;        /* true if any marks on this page */\
  164.     gx_device_bbox *bbox_device;    /* for tracking bounding box */\
  165.         /* Cached values */\
  166.     gx_color_index black, white
  167. #define vdev_proc(vdev, p) ((vdev)->vec_procs->p)
  168.  
  169. #define vector_initial_values\
  170.     0,        /* v_memory */\
  171.     0,        /* vec_procs */\
  172.      { 0 },        /* fname */\
  173.     0,        /* file */\
  174.     0,        /* strm */\
  175.     0,        /* strmbuf */\
  176.     0,        /* strmbuf_size */\
  177.      { 0 },        /* state */\
  178.      { 0 },        /* dash_pattern */\
  179.      { 0 },        /* fill_color ****** WRONG ****** */\
  180.      { 0 },        /* stroke_color ****** WRONG ****** */\
  181.     gs_no_id,    /* clip_path_id */\
  182.     gs_no_id,    /* no_clip_path_id */\
  183.      { X_DPI/72.0, Y_DPI/72.0 },    /* scale */\
  184.     0/*false*/,    /* in_page */\
  185.     0,        /* bbox_device */\
  186.     gx_no_color_index,    /* black */\
  187.     gx_no_color_index    /* white */
  188.  
  189. struct gx_device_vector_s {
  190.     gx_device_vector_common;
  191. };
  192. /* st_device_vector is never instantiated per se, but we still need to */
  193. /* extern its descriptor for the sake of subclasses. */
  194. extern_st(st_device_vector);
  195. #define public_st_device_vector()    /* in gdevvec.c */\
  196.   gs_public_st_suffix_add3_final(st_device_vector, gx_device_vector,\
  197.     "gx_device_vector", device_vector_enum_ptrs,\
  198.     device_vector_reloc_ptrs, gx_device_finalize, st_device, strm, strmbuf,\
  199.     bbox_device)
  200. #define st_device_vector_max_ptrs (st_device_forward_max_ptrs + 3)
  201.  
  202. /* ================ Utility procedures ================ */
  203.  
  204. /* Initialize the state. */
  205. void gdev_vector_init(P1(gx_device_vector *vdev));
  206.  
  207. /* Reset the remembered graphics state. */
  208. void gdev_vector_reset(P1(gx_device_vector *vdev));
  209.  
  210. /* Open the output file and stream, with optional bbox tracking. */
  211. int gdev_vector_open_file_bbox(P3(gx_device_vector *vdev, uint strmbuf_size,
  212.                   bool bbox));
  213. #define gdev_vector_open_file(vdev, strmbuf_size)\
  214.   gdev_vector_open_file_bbox(vdev, strmbuf_size, false)
  215.  
  216. /* Get the current stream, calling beginpage if in_page is false. */
  217. stream *gdev_vector_stream(P1(gx_device_vector *vdev));
  218.  
  219. /* Bring the logical operation up to date. */
  220. /* May call setlogop. */
  221. int gdev_vector_update_log_op(P2(gx_device_vector *vdev,
  222.                  gs_logical_operation_t lop));
  223.  
  224. /* Bring the fill color up to date. */
  225. /* May call setfillcolor. */
  226. int gdev_vector_update_fill_color(P2(gx_device_vector *vdev,
  227.                      const gx_drawing_color *pdcolor));
  228.  
  229. /* Bring state up to date for filling. */
  230. /* May call setflat, setfillcolor, setlogop. */
  231. int gdev_vector_prepare_fill(P4(gx_device_vector *vdev,
  232.                 const gs_imager_state *pis,
  233.                 const gx_fill_params *params,
  234.                 const gx_drawing_color *pdcolor));
  235.  
  236. /* Bring state up to date for stroking.  Note that we pass the scale */
  237. /* for the line width and dash offset explicitly. */
  238. /* May call setlinewidth, setlinecap, setlinejoin, setmiterlimit, */
  239. /* setdash, setflat, setstrokecolor, setlogop. */
  240. int gdev_vector_prepare_stroke(P5(gx_device_vector *vdev,
  241.                   const gs_imager_state *pis,
  242.                   const gx_stroke_params *params,
  243.                   const gx_drawing_color *pdcolor,
  244.                   floatp scale));
  245.  
  246. /* Write a polygon as part of a path (type = gx_path_type_none) */
  247. /* or as a path. */
  248. /* May call moveto, lineto, closepath (if close); */
  249. /* may call beginpath & endpath if type != none. */
  250. int gdev_vector_write_polygon(P5(gx_device_vector *vdev,
  251.                  const gs_fixed_point *points, uint count,
  252.                  bool close, gx_path_type_t type));
  253.  
  254. /* Write a rectangle as part of a path. */
  255. /* May call moveto, lineto, closepath (if close). */
  256. int gdev_vector_write_rectangle(P7(gx_device_vector *vdev,
  257.                    fixed x0, fixed y0, fixed x1, fixed y1,
  258.                    bool close, gx_rect_direction_t dir));
  259.  
  260. /* Write a clipping path by calling the path procedures. */
  261. /* May call the same procedures as writepath. */
  262. int gdev_vector_write_clip_path(P2(gx_device_vector *vdev,
  263.                    const gx_clip_path *pcpath));
  264.  
  265. /* Bring the clipping state up to date. */
  266. /* May call write_rectangle (q.v.), write_clip_path (q.v.). */
  267. int gdev_vector_update_clip_path(P2(gx_device_vector *vdev,
  268.                     const gx_clip_path *pcpath));
  269.  
  270. /* Close the output file and stream. */
  271. void gdev_vector_close_file(P1(gx_device_vector *vdev));
  272.  
  273. /* ---------------- Image enumeration ---------------- */
  274.  
  275. /* Define a common set of state parameters for enumerating images. */
  276. #define gdev_vector_image_enum_common\
  277.         /* Set by begin_image */\
  278.     gs_memory_t *memory;    /* from begin_image */\
  279.     void *default_info;    /* non-0 iff using default implementation */\
  280.     void *bbox_info;    /* non-0 iff passing image data to bbox dev */\
  281.     int width, height;\
  282.     int num_planes;\
  283.     int bits_per_pixel;    /* (per plane) */\
  284.     uint bits_per_row;    /* (per plane) */\
  285.         /* Updated dynamically by image_data */\
  286.     int y            /* 0 <= y < height */
  287. typedef struct gdev_vector_image_enum_s {
  288.   gdev_vector_image_enum_common;
  289. } gdev_vector_image_enum_t;
  290. extern_st(st_vector_image_enum);
  291. #define public_st_vector_image_enum()    /* in gdevvec.c */\
  292.   gs_public_st_ptrs2(st_vector_image_enum, gdev_vector_image_enum_t,\
  293.     "gdev_vector_image_enum_t", vector_image_enum_enum_ptrs,\
  294.     vector_image_enum_reloc_ptrs, default_info, bbox_info)
  295.  
  296. /* Initialize for enumerating an image. */
  297. /* Note that the last argument is an already-allocated enumerator, */
  298. /* not a pointer to the place to store the enumerator. */
  299. int gdev_vector_begin_image(P9(gx_device_vector *vdev,
  300.   const gs_imager_state *pis, const gs_image_t *pim,
  301.   gs_image_format_t format, const gs_int_rect *prect,
  302.   const gx_drawing_color *pdcolor, const gx_clip_path *pcpath,
  303.   gs_memory_t *mem, gdev_vector_image_enum_t *pie));
  304.  
  305. /* End an image, optionally supplying any necessary blank padding rows. */
  306. /* Return 0 if we used the default implementation, 1 if not. */
  307. int gdev_vector_end_image(P4(gx_device_vector *vdev,
  308.   gdev_vector_image_enum_t *pie, bool draw_last, gx_color_index pad));
  309.  
  310. /* ================ Device procedures ================ */
  311.  
  312. /* Redefine get/put_params to handle OutputFile. */
  313. dev_proc_put_params(gdev_vector_put_params);
  314. dev_proc_get_params(gdev_vector_get_params);
  315.  
  316. /* ---------------- Defaults ---------------- */
  317.  
  318. /* fill_rectangle may call setfillcolor, dorect. */
  319. dev_proc_fill_rectangle(gdev_vector_fill_rectangle);
  320. /* fill_path may call prepare_fill, writepath, write_clip_path. */
  321. dev_proc_fill_path(gdev_vector_fill_path);
  322. /* stroke_path may call prepare_stroke, write_path, write_clip_path. */
  323. dev_proc_stroke_path(gdev_vector_stroke_path);
  324. /* fill_trapezoid, fill_parallelogram, and fill_triangle may call */
  325. /* setfillcolor, setlogop, beginpath, moveto, lineto, endpath. */
  326. dev_proc_fill_trapezoid(gdev_vector_fill_trapezoid);
  327. dev_proc_fill_parallelogram(gdev_vector_fill_parallelogram);
  328. dev_proc_fill_triangle(gdev_vector_fill_triangle);
  329.